home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / AquariumView / wraps.psw < prev   
Text File  |  1992-03-18  |  352b  |  18 lines

  1. defineps PSW_transformToFit (int Rot; int angle; float w; float h)
  2. %    w h 0 0 4 Rot roll translate pop pop
  3. %    angle rotate
  4.     w 2 div dup h 2 div dup translate
  5.     angle rotate
  6.     -1 mul exch -1 mul translate
  7. endps
  8.  
  9. defineps PSW_flipHor(float w; float h)
  10.     w 0 translate
  11.     -1 1 scale
  12. endps
  13.  
  14. defineps PSW_flipVer(float w; float h)
  15.     0 h translate
  16.     1 -1 scale
  17. endps
  18.